From ac19029d8aca84c169b2821d640a53bbe25ad5eb Mon Sep 17 00:00:00 2001 From: Gabriel Wicke Date: Fri, 23 Apr 2004 20:28:15 +0000 Subject: [PATCH] fix for double-escape --- includes/SkinPHPTal.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SkinPHPTal.php b/includes/SkinPHPTal.php index 301a14ce86..b7adc8756b 100644 --- a/includes/SkinPHPTal.php +++ b/includes/SkinPHPTal.php @@ -97,7 +97,7 @@ foreach( $wgFeedClasses as $format => $class ) { $feeds[$format] = array( 'text' => $format, - 'href' => $wgRequest->escapeAppendQuery( "feed=$format" ), + 'href' => $wgRequest->appendQuery( "feed=$format" ), 'ttip' => wfMsg('tooltip-'.$format) ); } -- 2.20.1